The following script displays a question based on the answer to one question:
Event.Value = Event.GetAnswer(Event.PrimaryInsured, "BMEAO_20_1_Existing") == 'True';
------------------------------------------------------------------------------------------------------------------------------------------
Based on answers to multiple questions, this script shows the question if either of the other questions are checked as yes.
Event.Value = Event.GetAnswer(Event.PrimaryInsured,"BMEAO_20_1_Existing") == 'True' || Event.GetAnswer(Event.PrimaryInsured,"BMEAO_20_2_Replacement") == 'True';
If you need the question to display for dependents based on the answer to one question:
Event.Value = Event.GetAnswer(Event.Dependents,"BMEAO_20_1_Existing") == 'True' ;